home *** CD-ROM | disk | FTP | other *** search
/ Gekkan Dennou Club 147 / Gekkan Dennou Club - 2000.8 Vol. 147 (Japan).7z / Gekkan Dennou Club - 2000.8 Vol. 147 (Japan) (Track 1).bin / docs / ippon / data / etc / sword.lzh / parts.h < prev    next >
Text File  |  1999-06-02  |  1KB  |  76 lines

  1. /* parts.h */
  2.  
  3. typedef struct _parts_table {
  4.     signed short x, y;    /* 座標 */
  5.     unsigned short pt;    /* スプライトパターンNo. */
  6. } PARTS_TABLE;
  7.  
  8.  
  9. /* 本体 */
  10. PARTS_TABLE parts0_table[18] =
  11. {
  12. /* x,y,pt */
  13.     {-24, -40, 0x11},
  14.     { -8, -40, 0x12},
  15.     {  8, -40, 0x13},
  16.  
  17.     {-24, -24, 0x21},
  18.     { -8, -24, 0x22},
  19.     {  8, -24, 0x23},
  20.  
  21.     {-24,  -8, 0x31},
  22.     { -8,  -8, 0x32},
  23.     {  8,  -8, 0x33},
  24.  
  25.     {-24,   8, 0x41},
  26.     { -8,   8, 0x42},
  27.     {  8,   8, 0x43},
  28.  
  29.     {-24,  24, 0x51},
  30.     { -8,  24, 0x52},
  31.     {  8,  24, 0x53},
  32.  
  33.     {-24,  40, 0x61},
  34.     { -8,  40, 0x62},
  35.     {  8,  40, 0x63},
  36.  
  37. };
  38.  
  39. /* 左翼 */
  40. PARTS_TABLE parts1_table[9] =
  41. {
  42. /***** x,   y,   pt */
  43.     {-32, -32, 0x26},
  44.     {-16, -32, 0x27},
  45.     {  0, -32, 0x28},
  46.  
  47.     {-32, -16, 0x36},
  48.     {-16, -16, 0x37},
  49.     {  0, -16, 0x38},
  50.  
  51.     {-32,   0, 0x46},
  52.     {-16,   0, 0x47},
  53.     {  0,   0, 0x48},
  54.  
  55. };
  56.  
  57.  
  58. /* 右翼 */
  59. PARTS_TABLE parts2_table[9] =
  60. {
  61. /***** x,   y,   pt */
  62.     {  0, -32, 0x29},
  63.     { 16, -32, 0x2a},
  64.     { 32, -32, 0x2b},
  65.  
  66.     {  0, -16, 0x39},
  67.     { 16, -16, 0x3a},
  68.     { 32, -16, 0x3b},
  69.  
  70.     {  0,   0, 0x49},
  71.     { 16,   0, 0x4a},
  72.     { 32,   0, 0x4b},
  73.  
  74. };
  75.  
  76.